HTMLify

index.html
Views: 127 | Author: cody
<!-- Based on CSS Loaders Tutorial by Shaun Pelling - The Net Ninja (2020)
see: https://www.youtube.com/watch?v=GFkorypkXsQ&list=PL4cUxeGkcC9guBMasBotBhq_cmvXhyr6t -->

<!DOCTYPE html>
<html lang="en">
  <head>
    <meta charset="UTF-8" />
    <meta name="viewport" content="width=device-width, initial-scale=1.0" />
    <link rel="stylesheet" href="style.css" />
    <title>CSS Loaders</title>
  </head>
  <body>
    <!-- spinner -->
    <div class="spinner">
      <div></div>
      <div></div>
    </div>

    <!-- bouncing balls -->
    <div class="bouncer">
      <div></div>
      <div></div>
      <div></div>
      <div></div>
    </div>

    <!-- flipping squares -->
    <div class="square">
      <div></div>
      <div></div>
    </div>
  </body>
</html>

Comments